home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_1
/
executive_v1.00
/
sysinfo.lzx
/
examples
/
test
/
defs.h
next >
Wrap
C/C++ Source or Header
|
1991-01-28
|
578b
|
38 lines
/*
* This file is public domain.
*
* Author: Petri Nordlund <petrin@mits.mdata.fi>
*
* $Id: defs.h 1.2 1995/07/19 19:49:58 petrin Exp petrin $
*
*/
/* EXEC/TYPES.H */
#include <exec/types.h>
/* SYSTEM */
#include <exec/memory.h>
#include <exec/ports.h>
#include <exec/execbase.h>
#include <dos/dos.h>
/* PROTOS */
#include <proto/exec.h>
/* ANSI C */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
/* General macros */
#ifndef max
#define max(a,b) ((a) > (b) ? (a) : (b))
#endif
#ifndef min
#define min(a,b) ((a) <= (b) ? (a) : (b))
#endif